Class org.omg.CORBA.DATA_CONVERSION
All Packages Class Hierarchy This Package Previous Next Index
Class org.omg.CORBA.DATA_CONVERSION
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----org.omg.CORBA.SystemException
|
+----org.omg.CORBA.DATA_CONVERSION
- public final class DATA_CONVERSION
- extends SystemException
The CORBA DATA_CONVERSION exception.
These exceptions
may be thrown as a result of a CORBA DATA_CONVERSION and may
also be returned by many standard CORBA API methods. It
contains a minor code, allowing more detailed specification, and a
completion status.
-
DATA_CONVERSION()
- Constructs a DATA_CONVERSION with a default minor code
of 0 and a completion state of COMPLETED_MAYBE.
-
DATA_CONVERSION(int, CompletionStatus)
- Constructs a DATA_CONVERSION with the specified
minor code and completion status.
-
DATA_CONVERSION(String)
- Constructs a DATA_CONVERSION with the specified detail.
-
DATA_CONVERSION(String, int, CompletionStatus)
- Constructs a DATA_CONVERSION with the specified detail
message, minor code, and completion status.
DATA_CONVERSION
public DATA_CONVERSION()
- Constructs a DATA_CONVERSION with a default minor code
of 0 and a completion state of COMPLETED_MAYBE.
DATA_CONVERSION
public DATA_CONVERSION(String s)
- Constructs a DATA_CONVERSION with the specified detail.
- Parameters:
- s - the String containing a detail message
DATA_CONVERSION
public DATA_CONVERSION(int minor,
CompletionStatus completed)
- Constructs a DATA_CONVERSION with the specified
minor code and completion status.
- Parameters:
- minor - the minor code
- completed - the completion status
DATA_CONVERSION
public DATA_CONVERSION(String s,
int minor,
CompletionStatus completed)
- Constructs a DATA_CONVERSION with the specified detail
message, minor code, and completion status.
A detail message is a String that describes this particular exception.
- Parameters:
- s - the String containing a detail message
- minor - the minor code
- completed - the completion status
All Packages Class Hierarchy This Package Previous Next Index